home *** CD-ROM | disk | FTP | other *** search
/ Kellogg's Amérique / Kellogg's Amérique / main.swf / scripts / fl / controls / ScrollPolicy.as < prev    next >
Text File  |  2020-08-04  |  326b  |  19 lines

  1. package fl.controls
  2. {
  3.    public class ScrollPolicy
  4.    {
  5.       
  6.       public static const OFF:String = "off";
  7.       
  8.       public static const ON:String = "on";
  9.       
  10.       public static const AUTO:String = "auto";
  11.        
  12.       
  13.       public function ScrollPolicy()
  14.       {
  15.          super();
  16.       }
  17.    }
  18. }
  19.